/* ---------新加代码 ----------------------------------------------------------------*/
/* ---------新加代码 ----------------------------------------------------------------*/
/* ---------新加代码 ----------------------------------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 99;
  background: #fff;
  transition: 1s;
}

.header .logo {
  transition: 1s;
  width: auto;
  height: 80px;
  margin: 10px 0;
}

.header .logo a {
  width: 100%;
  height: 100%;
}

.header .logo a img {
  max-width: 100%;
  max-height: 100%;
}

.header .nav {
  max-width: 920px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.header .nav .navbar_nav {
  width: 100%;
  padding-left: 0;
}

.header .navbar_nav li>a {
  font-size: 16px;
  font-weight: bold;
  line-height: 100px;
  color: #333;
  position: relative;
  font-family: 'bold';
}

.header .navbar_nav li.dropdown {
  width: 100%;
}

.header .navbar_nav li.dropdown .dropdown_menu {
  display: block;
  position: absolute;
  min-width: 100%;
  height: 0;
  overflow: hidden;
  top: 100%;
  position: absolute;
  left: calc((100% - 180px) / 2);
  width: 180px;
  background: #fff;
  transition: 0.3s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
  padding: 20px 30px;
  border-top: 2px solid var(--color);
}

.header .navbar_nav li.dropdown .dropdown_menu a {
  font-size: 14px;
  line-height: 25px;
  padding: 15px 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.header .navbar_nav li.dropdown .dropdown_menu a:last-child {
  border-bottom: 0px;
}

.header .navbar_nav li.dropdown .dropdown_menu a:hover {
  color: var(--color);
}

/* 响应式代码 */
@media screen and (max-width: 992px) {
  .header .logo .img2 {
    display: flex;
  }

  .header .logo .img1 {
    display: none;
  }

  .header #navToggle span,
  .header #navToggle span:before,
  .header #navToggle span:after {
    background: #000 !important;
  }

}

/* 新加代码 */

.navRight {
  display: flex;
}

.navRight .icon {
  display: flex;
  align-items: center;
}

.navRight .icon a {
  height: 18px;
  margin: 0 10px;
  display: flex;
}

.navRight .icon a img {
  height: 100%;
  filter: brightness(0);
  transition: 0.3s;
}

.navRight .icon a:hover img {
  filter: brightness(1);
}